home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / ccgs < prev    next >
Text File  |  1997-06-20  |  915b  |  41 lines

  1. # This file is a hack.  If `make' had macros with parameters,
  2. # this file would be unnecessary!
  3. if ( test -n "$6" ) then
  4.     ./ansi2knr $6 _temp_$$.c
  5.     $1 $2 $3 _temp_$$.c
  6.     rm -f $5
  7.     mv _temp_$$.o $5
  8. else
  9. # Modified this bit here for more compilation flags ...
  10. if ( test -n "$5" ) then
  11.     ./ansi2knr $5 _temp_$$.c
  12.     $1 $2 $3 $4 _temp_$$.c
  13.         if ( test "$2" != "-o" ) then
  14.                 rm -f `basename $5 .c` .o
  15.                 mv _temp_$$.o `basename $5 .c`.o
  16.         fi
  17. else
  18. if ( test -n "$4" ) then
  19.     ./ansi2knr $4 _temp_$$.c
  20.     $1 $2 $3 _temp_$$.c
  21.     if ( test "$2" != "-o" ) then
  22.         rm -f `basename $4 .c`.o
  23.         mv _temp_$$.o `basename $4 .c`.o
  24.     fi
  25. else
  26. if ( test -n "$3" ) then
  27.     ./ansi2knr $3 _temp_$$.c
  28.     $1 $2 _temp_$$.c
  29.     rm -f `basename $3 .c`.o
  30.     mv _temp_$$.o `basename $3 .c`.o
  31. else
  32.     ./ansi2knr $2 _temp_$$.c
  33.     $1 _temp_$$.c
  34.     rm -f `basename $2 .c`.o
  35.     mv _temp_$$.o `basename $2 .c`.o
  36. fi
  37. fi
  38. fi
  39. fi
  40. rm -f _temp_$$.c
  41.